home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GFX Sensations 1
/
Graphic Sensations - Volume 1.iso
/
tools
/
amiga
/
fractals
/
fracdata.lha
/
data
/
bat
/
temp.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-03-21
|
159 b
|
10 lines
#include <stdio.h>
void main()
{
int n;
float a=-2.19, b=0.95;
printf("\n\n");
for (n=0; n<=5; ++n) printf("%G\n", ((5-n)/5.0)*a + (n/5.0)*b);
}